home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN5.L2 < prev    next >
Text File  |  1996-04-01  |  3KB  |  126 lines

  1. name Fanuc 5T
  2.  
  3. O >4
  4. N >3
  5. G >2
  6. X ->3.>4
  7. Z ->3.>4
  8. D >2
  9. I ->3.>4
  10. K ->3.>4
  11. U ->3.>4
  12. W ->3.>4
  13. P ->3.>4
  14. A 60 P
  15. Q ->3.>4
  16. q >4 Q
  17. R ->3.>4
  18. F >3.>3
  19. T 2
  20. S >4
  21. M >2
  22.  
  23. RevSigns X I                          # List of letters to reverse signs  
  24.  
  25. ModalGs 0 1 2 3 73 76 80 81 82 83 84 85  # List of g codes that are modal    
  26.  
  27. First#? N                             # Y or N  'Output 1st sequence no.  
  28. Sequence#s N 0 1 1                    # Char, freq, incr & start          
  29.  
  30. Comment ( )                           # Begin End comment char.           
  31.  
  32. HCode Z                               # X or X U  'Horizontal char.       
  33. VCode X                               # Y or Y V  'Vertical char.         
  34. FeedCode F                            # Feed rate char.                   
  35.  
  36. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  37. Coolant 8 9 7                         # On, Off & Mist m codes            
  38. SpeedType G 97 96                     # CSS and RPM g codes               
  39. FeedType G 95 94                      # IPR & IPM g codes                 
  40.  
  41. ByDiameter? Y                         # Y or N  'Output X val. by diameter
  42.  
  43. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  44. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  45.  
  46. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  47.  
  48. Inch/MM 20 21                         # Inch & Metric g codes             
  49.  
  50. CtrCode K I                           # I J or R or I J K L               
  51.  
  52. Feed G1                               # Linear move                       
  53. Rapid G0                              # Rapid positioning word            
  54. Cw G2                                 # Circular move clockwise           
  55. Ccw G3                                # Circular move counter clockwise   
  56.  
  57. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  58.  
  59. AutoThread                            # Automatic thread canned cycle     
  60. G76 A[TParams] Q[VBite] R0
  61. G76 X[V] Z[H] R[StartAng] P[Depth] q[Peck1] F[Frate]
  62. end
  63.  
  64. Drill                                 # Drilling canned/manual cycle      
  65. G1 Z[H] F[Frate]
  66. G0 Z[SClear]
  67. end
  68.  
  69. Peck                                  # Pecking canned/manual cycle       
  70. none
  71. end
  72.  
  73. Tap                                   # Tapping canned/manual cycle       
  74. G78 Z[H] F[FRate]
  75. end cancel
  76.  
  77. Ream                                  # Reaming canned/manual cycle       
  78. G1 Z[H] F[FRate]
  79. G0 Z[SClear]
  80. end
  81.  
  82. Cancel                                # Cancel a canned/manual cycle      
  83. G80
  84. end
  85.  
  86. StartCode                             # Start of the program              
  87. O[Program#]
  88. end
  89.  
  90. 1stToolChange                         # First tool change                 
  91. T0
  92. G28 W0
  93. G28 U0
  94. G50 X0 Z0
  95. T[Tool]
  96. G0 X[V]
  97. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  98. Z[H] M[Cool]
  99. End
  100.  
  101. Infeed                                # Enable cutter comp                
  102. G1 X[V] Z[H] D[Dcomp] F[FRate]
  103. end
  104.  
  105. Outfeed                               # Disable cutter comp               
  106. G1 X[V] Z[H] F[FRate]
  107. end
  108.  
  109. ToolChange                            # Secondary tool changes            
  110. G0 Z[ToolH] M5
  111. T0
  112. T[Tool]
  113. G0 X[V]
  114. G[FeedType] G[SpeedType] S[Speed] M[Direct]
  115. Z[H] M[Cool]
  116. End
  117.  
  118. EndCode                               # End of the program                
  119. G0 Z[ToolH]
  120. G28 W0 M5
  121. G28 U0
  122. M30
  123. End
  124.  
  125.  
  126.